home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / perl / 5.10.0 / Module / Build / Platform / cygwin.pm < prev    next >
Encoding:
Perl POD Document  |  2009-06-26  |  651 b   |  40 lines

  1. package Module::Build::Platform::cygwin;
  2.  
  3. use strict;
  4. use vars qw($VERSION);
  5. $VERSION = '0.2808_01';
  6. $VERSION = eval $VERSION;
  7. use Module::Build::Platform::Unix;
  8.  
  9. use vars qw(@ISA);
  10. @ISA = qw(Module::Build::Platform::Unix);
  11.  
  12. sub manpage_separator {
  13.    '.'
  14. }
  15.  
  16. 1;
  17. __END__
  18.  
  19.  
  20. =head1 NAME
  21.  
  22. Module::Build::Platform::cygwin - Builder class for Cygwin platform
  23.  
  24. =head1 DESCRIPTION
  25.  
  26. This module provides some routines very specific to the cygwin
  27. platform.
  28.  
  29. Please see the L<Module::Build> for the general docs.
  30.  
  31. =head1 AUTHOR
  32.  
  33. Initial stub by Yitzchak Scott-Thoennes <sthoenna@efn.org>
  34.  
  35. =head1 SEE ALSO
  36.  
  37. perl(1), Module::Build(3), ExtUtils::MakeMaker(3)
  38.  
  39. =cut
  40.